diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,10 +8,10 @@ fi url="$2" if [[ ! $url ]]; then - echo "No spec file specified." + echo "No published snapshot URL specified." exit 1 fi docker build \ -t "astroconda/buildsys-pipeline:${tag}" \ - --build-arg PIPELINE_URL="${url}" $(pwd) + --build-arg SNAPSHOT_URL="${url}" $(pwd) |