Skip to content

Commit

Permalink
Fixes builtin vs locally specified recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
ricejasonf committed Jun 3, 2019
1 parent a859020 commit 8da0220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cppdock
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,9 @@ def make_base_image_dockerfile(config, platform_name):

def find_recipe(platform, repo):
repo = repo.replace('/', '-')
local_recipe_path = os.path.expanduser('~') + '/.cppdock_recipes'
builtin_recipe_path = '/opt/cppdock_recipes'
local_recipe_path = '/opt/cppdock_recipes'
repo_with_platform = repo + '-' + platform
builtin_recipe_path = os.path.expanduser('~') + '/.cppdock_recipes'
xs = [
local_recipe_path + '/' + repo_with_platform,
local_recipe_path + '/' + repo,
Expand Down

0 comments on commit 8da0220

Please sign in to comment.