Skip to content

Commit

Permalink
[CI] replaced rm with mv in build_tarballs_release.jl [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanaret committed Nov 16, 2024
1 parent e279c8c commit a8dfc67
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/julia/build_tarballs_release.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ if [[ "${target}" == x86_64-apple-darwin* ]]; then
export MACOSX_DEPLOYMENT_TARGET=10.15
# ...and install a newer SDK which supports `std::filesystem`
pushd $WORKSPACE/srcdir/MacOSX10.*.sdk
rm -rf /opt/${target}/${target}/sys-root/System
# CV: replacing rm -rf with mv
# rm -rf /opt/${target}/${target}/sys-root/System
mv /opt/${target}/${target}/sys-root/System /opt/${target}/${target}/sys-root/System_old
cp -ra usr/* "/opt/${target}/${target}/sys-root/usr/."
cp -ra System "/opt/${target}/${target}/sys-root/."
popd
Expand Down

0 comments on commit a8dfc67

Please sign in to comment.