Skip to content

Commit

Permalink
removed apostrophes
Browse files Browse the repository at this point in the history
  • Loading branch information
art-divin committed Jan 15, 2024
1 parent 4b59049 commit 38b558d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_Ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
swift-version: "5.9.2"
- name: Build it
run: |
BUILD_DIR='${HOME}/build/'
BUILD_DIR="${HOME}/build/"
swift build --disable-sandbox -c release --build-path $BUILD_DIR
mv "${BUILD_DIR}x86_64-unknown-linux-gnu/release/sourcery" "${HOME}/sourcery"
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release_macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
ref: ${{ github.event.inputs.ref }}
- name: Build it
run: |
CLI_DIR='${HOME}/cli/'
RESOURCES_DIR='${CLI_DIR}Resources/'
TEMPLATES_DIR='${CLI_DIR}Templates/'
BUILD_DIR='${HOME}/build/'
BIN_DIR='${CLI_DIR}bin/'
ARTIFACT_BUNDLE_PATH='${HOME}/artifactbundle/'
CLI_DIR="${HOME}/cli/"
RESOURCES_DIR="${CLI_DIR}Resources/"
TEMPLATES_DIR="${CLI_DIR}Templates/"
BUILD_DIR="${HOME}/build/"
BIN_DIR="${CLI_DIR}bin/"
ARTIFACT_BUNDLE_PATH="${HOME}/artifactbundle/"
path_to_sourcery_binary="${BIN_DIR}/sourcery"
mkdir -p $BIN_DIR
mkdir -p $RESOURCES_DIR
mkdir -p $TEMPLATES_DIR
Expand Down

0 comments on commit 38b558d

Please sign in to comment.