1
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
3
# Copyright (C) 2015 Canonical Ltd
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.
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.
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/>.
22
Ensure that snapcraft.common.plugindir are setup correctly
23
and support running out of a development snapshot
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')
30
snapcraft.common.plugindir = os.path.join(topdir, 'share', 'snapcraft', 'plugins')