diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 09:38:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 09:38:24 (GMT) |
commit | 20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7 (patch) | |
tree | 5bf526ad5222d8d900a0d62391fcb03c686ebda4 /.github | |
parent | 5d4116b63829ba46f63a5ec7434710edc4b98943 (diff) | |
download | tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.zip tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.tar.gz tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.tar.bz2 |
Use more 0o??? syntax for octal. Clean up build *.yml files
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-build.yml | 3 | ||||
-rw-r--r-- | .github/workflows/mac-build.yml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index bf0a4cb..3d56638 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -20,7 +20,8 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Prepare - run: touch tclStubInit.c tclOOStubInit.c + run: | + touch tclStubInit.c tclOOStubInit.c working-directory: generic - name: Configure ${{ matrix.cfgopt }} run: | diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 3302265..c1144ab 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -11,7 +11,8 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Prepare - run: touch tclStubInit.c tclOOStubInit.c + run: | + touch tclStubInit.c tclOOStubInit.c working-directory: generic - name: Build run: make all |