diff --git a/docker-auto-build.sh b/docker-auto-build.sh index 689eddf..30a29c2 100644 --- a/docker-auto-build.sh +++ b/docker-auto-build.sh @@ -8,18 +8,18 @@ mkdir -p bin/ # Statically built binaries make this part really easy for target in $cargo_targets;do echo ================================================ - echo = = - echo = = - echo = = - echo Building $target - echo = = - echo = = - echo = = + echo = + echo = + echo = + echo = Building $target + echo = + echo = + echo = echo ================================================ - pushd $target + cd $target cargo build --release cp target/release/$target ../bin/ - popd + cd ../ done