Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tell users to use --install-assistant=yes #12507

Merged
merged 3 commits into from
Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Tell users to use --install-assistant=yes
`daml install --activate` is deprecated since forever, we tell
users to use `daml install --install-assistant=yes` instead.

changelog_begin
changelog_end
  • Loading branch information
sofiafaro-da committed Jan 20, 2022
commit 64efaf7ae1ccab37277cb87b2d6bf5627980710c
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ On Windows:
bazel build //release:sdk-release-tarball
tar -vxf .\bazel-bin\release\sdk-release-tarball-ce.tar.gz
cd sdk-*
daml\daml.exe install . --activate
daml\daml.exe install . --install-assistant=yes
```

That should tell you what to put in the path, something along the lines of `C:\Users\admin\AppData\Roaming\daml\bin`.
Expand Down
2 changes: 1 addition & 1 deletion daml-assistant/src/DA/Daml/Assistant/Install.hs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ uninstallVersion Env{..} sdkVersion = wrapErr "Uninstalling SDK version." $ do
, "Please activate a different SDK version and try again."
, "To activate a different version, run:"
, ""
, " daml install VERSION --activate"
, " daml install VERSION --install-assistant=yes"
] -- TODO (FAFM): suggest a version that will work.
exitFailure

Expand Down
2 changes: 1 addition & 1 deletion language-support/hs/bindings/examples/nim/demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Notes on the format of this file:

$ cd daml
$ bazel build language-support/hs/bindings/examples/nim/...
$ daml install latest --activate
$ daml install latest --install-assistant=yes

## 1. Look at [Nim.daml](https://github.com/digital-asset/daml/blob/main/language-support/hs/bindings/examples/nim/daml/Nim.daml)

Expand Down