FiloSottile / age

A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.
https://age-encryption.org
BSD 3-Clause "New" or "Revised" License
17.01k stars 499 forks source link

Fix scoop command in README.md #564

Closed rasa closed 3 months ago

gaby commented 4 months ago

@rasa This is not fixing anything, the command was correct already. With the & it will run the 2nd command regardless of exit status of the first one.

rasa commented 4 months ago

@rasa This is not fixing anything, the command was correct already. With the & it will run the 2nd command regardless of exit status of the first one.

@gaby Then use &&. The ; char does not separate characters in a CMD prompt window. For example:

c:\ >scoop update ; scoop status
...
Scoop was updated successfully!
ERROR ';' isn't installed.
ERROR 'status' isn't installed.

c:\ >scoop update & scoop status
Updating Scoop...
Updating Buckets...
Scoop was updated successfully!
Scoop is up to date.

Name                  Installed Version Latest Version Missing Dependencies Info
----                  ----------------- -------------- -------------------- ----
7zip                  23.01             24.05
...