Skip to content
Snippets Groups Projects
Unverified Commit 714bc32f authored by Ian Douglas Scott's avatar Ian Douglas Scott
Browse files

Do not copy .cargo and libc-artifacts

Cargo searches parent directories for .cargo, so this is unnecessary.
parent 1fb6beca
No related branches found
No related tags found
1 merge request!10Do not copy .cargo and libc-artifacts
......@@ -135,7 +135,7 @@ function op {
fi
if [ "$skip" -eq "0" ]
then
cp -r "$ROOT/Xargo.toml" "$ROOT/.cargo" "$ROOT/libc-artifacts" .
cp -r "$ROOT/Xargo.toml" .
xargo build --target "$TARGET" --release $CARGOFLAGS
fi
popd > /dev/null
......@@ -149,7 +149,7 @@ function op {
fi
if [ "$skip" -eq "0" ]
then
cp -r "$ROOT/Xargo.toml" "$ROOT/.cargo" "$ROOT/libc-artifacts" .
cp -r "$ROOT/Xargo.toml" .
xargo test --no-run --target "$TARGET" --release $CARGOFLAGS
fi
popd > /dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment