From eb3639d3c56e71917bedb249d90efcd2f8ea41f2 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 3 Jan 2022 21:47:04 -0500 Subject: [PATCH] os2.yml: Fix wget command line It's a capital O, not lowercase. :/ --- .github/workflows/os2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/os2.yml b/.github/workflows/os2.yml index 2655ff2fe..48f0fe5d3 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 '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 shell: bash - name: Build