Skip to content

Commit

Permalink
Merge pull request #368 from lsst/tickets/DM-24290
Browse files Browse the repository at this point in the history
DM-24290: Remove if Butler exists checks from bin.src scripts.
  • Loading branch information
DinoBektesevic committed Apr 28, 2020
2 parents 6858528 + 4f2177c commit d80f8f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions bin.src/makeGen3DcrSubfilters.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@

args = parser.parse_args()

# Verify any supplied paths actually exist on disk
if not os.path.exists(args.butler):
print("Butler path specified does not exists")
sys.exit(1)

config = MakeGen3DcrSubfiltersConfig()
if args.configFile:
if not os.path.exists(args.configFile):
Expand Down
5 changes: 0 additions & 5 deletions bin.src/makeGen3Skymap.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@

args = parser.parse_args()

# Verify any supplied paths actually exist on disk
if not os.path.exists(args.butler):
print("Butler path specified does not exists")
sys.exit(1)

config = MakeGen3SkyMapConfig()
if args.configFile:
if not os.path.exists(args.configFile):
Expand Down

0 comments on commit d80f8f7

Please sign in to comment.