Closed rasa closed 5 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
...
@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.