Skip to content

Commit

Permalink
cue: fix issue introduced in 35f5bef
Browse files Browse the repository at this point in the history
- was leading to jobs failing if setup file was
  not found in the first directory of search path
  • Loading branch information
ralphlange committed Jun 15, 2020
1 parent 4690a97 commit 12d7698
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cue.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ def source_set(name):
setup[assign[0]] = assign[1]
logger.debug('Done with setup file %s', set_file)
break
else:
raise NameError("{0}Setup file {1}.set does not exist in SETUP_PATH search path ({2}){3}"
.format(ANSI_RED, name, setup_dirs, ANSI_RESET))
else:
raise NameError("{0}Setup file {1}.set does not exist in SETUP_PATH search path ({2}){3}"
.format(ANSI_RED, name, setup_dirs, ANSI_RESET))


# update_release_local(var, location)
Expand Down

0 comments on commit 12d7698

Please sign in to comment.