diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml index 3ec76a2..67a9237 100644 --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -27,11 +27,11 @@ jobs: - name: Extract Hotfix run: sh ./utils/extractHotfix.sh - run: mkdir newHotfix - - name: Move patched uks to new hotfix - run: cp patchedUks.sqsh newHotfix - - name: Patching bridge and bridge install - run: patch originalHotfix/bridge < utils/bridge.patch - - run: patch originalHotfix/install-bridge.sh < utils/install-bridge.sh.patch + # - name: Move patched uks to new hotfix + # run: cp patchedUks.sqsh newHotfix + # - name: Patching bridge and bridge install # no need to patch anymore yay + # run: patch originalHotfix/bridge < utils/bridge.patch + # - run: patch originalHotfix/install-bridge.sh < utils/install-bridge.sh.patch - run: mv originalHotfix/* newHotfix - run: mkdir build - name: "Building hotix universally" diff --git a/build.sh b/build.sh index c30ea14..c88421a 100755 --- a/build.sh +++ b/build.sh @@ -9,11 +9,11 @@ echo "extracting hotfix" ./utils/extractHotfix.sh &> /dev/null rm -rf newHotfix mkdir newHotfix -echo "moving patched uks to the new hotfix" -cp patchedUks.sqsh newHotfix -echo "patching bridge in the new hotfix" -$(patch originalHotfix/bridge < utils/bridge.patch) &> /dev/null -$(patch originalHotfix/install-bridge.sh < utils/install-bridge.sh.patch) &> /dev/null +# echo "moving patched uks to the new hotfix" +# cp patchedUks.sqsh newHotfix +# echo "patching bridge in the new hotfix" # we don't need to patch it anymore +# $(patch originalHotfix/bridge < utils/bridge.patch) &> /dev/null +# $(patch originalHotfix/install-bridge.sh < utils/install-bridge.sh.patch) &> /dev/null mv originalHotfix/* newHotfix mkdir build rm -rf originalHotfix