From 44c07a3954daf1f58e8144731b45fb7bb5d7d98e Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Jan 20 2018 11:54:08 +0000 Subject: bin/get_formulas.py: load FORMULAS.yaml from the original path --- diff --git a/bin/get_formulas.py b/bin/get_formulas.py index 22749a1..a9bd635 100755 --- a/bin/get_formulas.py +++ b/bin/get_formulas.py @@ -162,7 +162,7 @@ def checkout_remote_and_branch(REMOTE_BRANCH, DEST): git(['checkout', '-qB', branch, REMOTE_BRANCH], cwd=FULL_PATH) -with open('FORMULAS.yaml', 'r') as f: +with open('pillar/FORMULAS.yaml', 'r') as f: FORMULAS = yaml.load(f) parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter, description='Loads the formulas from FORMULAS.yaml and performs one or more of the operations specified at the arguments.')