Skip to content

Commit

Permalink
ncutil6
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner committed Jan 18, 2025
1 parent 507403a commit 999dabd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-cmake.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: NetCDF-C CMake CI - Windows

on: [push, pull_request, workflow_dispatch]
on: [ pull_request, workflow_dispatch]

env:
REMOTETESTDOWN: no
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

name: Run Ubuntu/Linux netCDF Tests

on: [push,pull_request,workflow_dispatch]
on: [pull_request,workflow_dispatch]

env:
REMOTETESTDOWN: no
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_win_cygwin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Run Cygwin-based tests

on: [push,pull_request,workflow_dispatch]
on: [pull_request,workflow_dispatch]

concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_win_mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CPPFLAGS: "-D_BSD_SOURCE"
REMOTETESTDOWN: ${{ vars.REMOTETESTDOWN }}

on: [push,pull_request,workflow_dispatch]
on: [pull_request,workflow_dispatch]

concurrency:
group: ${{ github.workflow}}-${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion oc2/ocinternal.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ createtempfile(OCstate* state, OCtree* tree)
strncpy(path,globalstate->tempdir,len);
strlcat(path,"/",len);
strlcat(path,DATADDSFILE,len);
tmppath = NC_mktmp(path);
if((stat = NC_mktmp(path,&tmppath))) goto done;
free(path);
if(tmppath == NULL) {stat = OC_EACCESS; goto fail;}
#ifdef OCDEBUG
Expand Down

0 comments on commit 999dabd

Please sign in to comment.