Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
q-uint committed Apr 29, 2024
1 parent 6ced0f2 commit 1e3b30a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Test Cache
run: |
dfx new test --type=motoko --no-frontend
mv test/* .
mv test/dfx.json .
dfx start --background
dfx canister create test_backend
dfx stop
Expand Down
2 changes: 1 addition & 1 deletion src/cache-paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function resolveDFXVersion(): string | undefined {
export function getCachePaths(): string[] {
let cachePaths: string[] = [];
if (getInput("dfx-version") || getInput("dfx-version-file")) {
cachePaths.push(`${process.env.GITHUB_WORKSPACE}/.cache/dfinity`);
cachePaths.push(`${process.env.HOME}/.cache/dfinity`);
cachePaths.push(`${process.env.GITHUB_WORKSPACE}/.dfx`);
}
if (getInput("vessel-version")) {
Expand Down

0 comments on commit 1e3b30a

Please sign in to comment.