Skip to content

Commit 5f09bc0

Browse files
Update path for coreutils aswell
1 parent 3195410 commit 5f09bc0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/configure_qt.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ jobs:
132132
- name: 1. [MacOS] Fix Path
133133
if: startsWith(matrix.config.os, 'macos')
134134
shell: bash
135-
run: echo "/usr/local/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
135+
run: |
136+
echo "/usr/local/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
137+
echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH
136138
137139
- name: 2. [All] Build up the environment
138140
shell: bash

update.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,11 @@ install_platform_deps() {
322322
"darwin19" | "darwin20")
323323
info "[Init] Install gnu-sed"
324324
brew install gnu-sed
325-
export PATH=/usr/local/opt/gnu-sed/libexec/gnubin:$PATH
325+
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
326326

327327
info "[Init] Install coreutils"
328328
brew install coreutils
329+
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
329330
;;
330331

331332
esac

0 commit comments

Comments
 (0)