File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ jobs:
755
755
begin_group "Mounting Dmg, and checking signature of installer app"
756
756
mkdir temp_mount
757
757
if [ "${{ matrix.SELF_HOSTED }}" == "true" ]; then
758
- sudo -S <<< "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}" hdiutil attach -mountpoint ./temp_mount/ $dmg
758
+ printf "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}\n" | sudo -S hdiutil attach -mountpoint ./temp_mount/ $dmg
759
759
else
760
760
sudo hdiutil attach -mountpoint ./temp_mount/ $dmg
761
761
fi
@@ -765,8 +765,8 @@ jobs:
765
765
766
766
begin_group "Installing"
767
767
if [ "${{ matrix.SELF_HOSTED }}" == "true" ]; then
768
- sudo -S <<< "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}" ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
769
- sudo -S <<< "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}" hdiutil detach ./temp_mount/
768
+ printf "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}\n" | sudo -S ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
769
+ printf "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}\n" | sudo -S hdiutil detach ./temp_mount/
770
770
else
771
771
sudo ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
772
772
sudo hdiutil detach ./temp_mount/
@@ -784,7 +784,7 @@ jobs:
784
784
echo "::endgroup::"
785
785
786
786
begin_group "Full Check signature of installed DMG for all executables and resolve otool libraries"
787
- python ../../ checkout/developer/python/verify_signature.py --otool --otool-out-file otool_info_dmg.json --verbose --install test_install
787
+ python ../checkout/developer/python/verify_signature.py --otool --otool-out-file otool_info_dmg.json --verbose --install test_install
788
788
echo "::endgroup::"
789
789
790
790
begin_group "Running a simulation with python"
You can’t perform that action at this time.
0 commit comments