Preserve timestamps on Xargo.toml

This commit is contained in:
Jeremy Soller 2018-03-12 20:59:25 -06:00
parent 84aecb23b6
commit 8456bb9a39

View File

@ -299,7 +299,7 @@ function op {
if [ "$skip" -eq "0" ]
then
cp -r "$ROOT/Xargo.toml" .
cp -p "$ROOT/Xargo.toml" "Xargo.toml"
xargo build --target "$TARGET" $release_flag $CARGOFLAGS
fi
popd > /dev/null
@ -320,7 +320,7 @@ function op {
if [ "$skip" -eq "0" ]
then
cp -r "$ROOT/Xargo.toml" .
cp -p "$ROOT/Xargo.toml" "Xargo.toml"
xargo test --no-run --target "$TARGET" $release_flag $CARGOFLAGS
fi
popd > /dev/null