Skip to content

Commit

Permalink
fix(scripts): correct lib.sh path
Browse files Browse the repository at this point in the history
  • Loading branch information
tcodes0 committed Aug 21, 2024
1 parent 50a263e commit 96c3e4c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
shell: bash
env:
CHANGELOG_FILE: CHANGELOG.md
run: ./sh/workflows/release/tag.sh
run: ./workflows/release/tag.sh
3 changes: 1 addition & 2 deletions ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

set -euo pipefail
shopt -s globstar
# shellcheck source=lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"

### vars and functions ###

Expand Down
3 changes: 1 addition & 2 deletions generate-mocks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@

set -euo pipefail
shopt -s globstar
# shellcheck source=lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"

### vars and functions ###

Expand Down
3 changes: 1 addition & 2 deletions migration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

set -euo pipefail
shopt -s globstar
# shellcheck source=lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"
trap 'err $LINENO' ERR

### vars and functions ###
Expand Down
3 changes: 1 addition & 2 deletions template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

set -euo pipefail
shopt -s globstar
# shellcheck source=lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"
trap 'err $LINENO' ERR

### vars and functions ###
Expand Down
4 changes: 2 additions & 2 deletions workflows/main/commit-lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

set -euo pipefail
shopt -s globstar
# shellcheck source=lib.sh
source "$PWD/sh/lib.sh"
# shellcheck source=../../lib.sh
source "$PWD/lib.sh"
trap 'err $LINENO' ERR

### vars and functions ###
Expand Down
2 changes: 1 addition & 1 deletion workflows/release/changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -euo pipefail
shopt -s globstar
# shellcheck source=../../lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"
trap 'err $LINENO' ERR

### vars and functions ###
Expand Down
2 changes: 1 addition & 1 deletion workflows/release/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -euo pipefail
shopt -s globstar
# shellcheck source=../../lib.sh
source "$PWD/sh/lib.sh"
source "$PWD/lib.sh"
trap 'err $LINENO' ERR

### vars and functions ###
Expand Down

0 comments on commit 96c3e4c

Please sign in to comment.