diff options
author | Arun Isaac | 2024-12-04 17:25:53 +0000 |
---|---|---|
committer | Arun Isaac | 2024-12-04 17:25:53 +0000 |
commit | a9db1e090c9be9ec4a7e343b50f00100367ad112 (patch) | |
tree | 625b413d000925d27ecbf9243b62601c36adc8b8 | |
parent | 443eb97fd9f726f57d3704146505af8c9246acf1 (diff) | |
download | ravanan-a9db1e090c9be9ec4a7e343b50f00100367ad112.tar.gz ravanan-a9db1e090c9be9ec4a7e343b50f00100367ad112.tar.lz ravanan-a9db1e090c9be9ec4a7e343b50f00100367ad112.zip |
bin: Indicate that the --scratch argument was not specified.
* bin/ravanan (main): Indicate specifically that the --scratch
argument was not specified.
-rwxr-xr-x | bin/ravanan | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ravanan b/bin/ravanan index 65cad9e..a697ac0 100755 --- a/bin/ravanan +++ b/bin/ravanan @@ -148,7 +148,7 @@ files that have the token in the @verbatim{SLURM_JWT=token} format." (case (assq-ref args 'batch-system) ((slurm-api) (unless (assq-ref args 'scratch) - (error "scratch not specified")) + (error "--scratch not specified")) (unless (assq-ref args 'slurm-jwt) (error "--slurm-jwt not specified")))) (match (reverse (assq-ref args 'args)) |