~jocave/snapcraft/plainbox-provider-plugin

« back to all changes in this revision

Viewing changes to snapcraft/dirs.py

  • Committer: Snappy Tarmac
  • Author(s): Michael Vogt
  • Date: 2015-07-15 17:11:26 UTC
  • mfrom: (75.4.20 yaml-tests)
  • Revision ID: snappy_tarmac-20150715171126-8o0aprlyqexqbbjb
Add tests for snapcraft/yaml.py and some code reorg refactor. by mvo approved by mterry

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
 
2
#
 
3
# Copyright (C) 2015 Canonical Ltd
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License version 3 as
 
7
# published by the Free Software Foundation.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
import os.path
 
18
 
 
19
 
 
20
def setup_dirs():
 
21
    """
 
22
    Ensure that snapcraft.common.plugindir are setup correctly
 
23
    and support running out of a development snapshot
 
24
    """
 
25
    import snapcraft.common
 
26
    topdir = os.path.abspath(os.path.join(__file__, "..", ".."))
 
27
    if os.path.exists(os.path.join(topdir, "setup.py")):
 
28
        snapcraft.common.plugindir = os.path.join(topdir, 'plugins')
 
29
    else:
 
30
        snapcraft.common.plugindir = os.path.join(topdir, 'share', 'snapcraft', 'plugins')