Commit 39fc1e87e59e8c50c8bc5968b09eed62f809069e

Ryan C. Gordon 2022-01-03T21:51:12

os2.yml: OpenWatcom install fixes Make everything in Open Watcom install executable (because none of it is, and this is good enough), and make wget less verbose.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/.github/workflows/os2.yml b/.github/workflows/os2.yml
index 48f0fe5..fe0baab 100644
--- a/.github/workflows/os2.yml
+++ b/.github/workflows/os2.yml
@@ -17,7 +17,7 @@ jobs:
           key: ${{ runner.os }}-build-${{ env.cache-name }}
 
       - name: Download OpenWatcom if not cached
-        run: if [ ! -d ~/openwatcom/binl64 ]; then wget 'https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/open-watcom-2_0-c-linux-x64' -O ~/ow.zip && mkdir -p ~/openwatcom && cd ~/openwatcom && unzip ~/ow.zip ; fi
+        run: if [ ! -d ~/openwatcom/binl64 ]; then wget --no-verbose 'https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/open-watcom-2_0-c-linux-x64' -O ~/ow.zip && mkdir -p ~/openwatcom && cd ~/openwatcom && unzip ~/ow.zip && chmod a+rx ~/openwatcom ; fi
         shell: bash
 
       - name: Build