Skip to content

Commit 194d5a8

Browse files
authored
Merge branch 'master' into f-f/add-refresh-flag
2 parents 59a56cb + b2fef99 commit 194d5a8

File tree

19 files changed

+22
-19
lines changed

19 files changed

+22
-19
lines changed

β€Žsrc/Spago/Command/Fetch.pursβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,10 @@ run { packages: packagesRequestedToInstall, ensureRanges, isTest, isRepl } = do
217217
pure $ Map.union supportDeps $ Map.union deps.test deps.core
218218

219219
-- then for every package we have we try to download it, and copy it in the local cache
220-
logInfo "Downloading dependencies..."
220+
{ offline } <- ask
221+
logInfo case offline of
222+
Offline -> "Checking dependencies..."
223+
_ -> "Downloading dependencies..."
221224
fetchPackagesToLocalCache depsToFetch
222225

223226
-- We return the dependencies, going through the lockfile write if we need to

β€Žtest-fixtures/monorepo/1208-no-double-cloning/expected-stderr/four-deps.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: consumer
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
No lockfile found, generating it...
77
Lockfile written to spago.lock. Please commit this file.

β€Žtest-fixtures/publish/1060-autofill-location/scenario-nested-subdir/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: ccc
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1060-autofill-location/scenario-no-origin/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1060-autofill-location/scenario-non-github/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1060-autofill-location/scenario-root/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1060-autofill-location/scenario-subdir/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: bbb
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1109-tag-mismatch/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1110-solver-different-version/expected-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
Src Lib All
88
Warnings 0 0 0

β€Žtest-fixtures/publish/1110-solver-different-version/failure-stderr.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Reading Spago workspace configuration...
22

33
βœ“ Selecting package to build: aaa
44

5-
Downloading dependencies...
5+
Checking dependencies...
66
Building...
77
[x of 3] Compiling module-name
88
[x of 3] Compiling module-name

0 commit comments

Comments
Β (0)