-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ssubmit" | ||
description = "Submit sbatch jobs without having to create a submission script" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Michael Hall <[email protected]>"] | ||
repository = "https://github.com/mbhall88/ssubmit" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs and I don't want to fluff around with making a submission script. | |
Run this little scriptlet or download for you system from the [releases page][releases]. | ||
|
||
```shell | ||
VERSION="0.1.1" # ssubmit version you want | ||
VERSION="0.2.0" # ssubmit version you want | ||
OS=$(uname -s) | ||
if [ "$OS" = "Linux" ]; then | ||
triple="x86_64-unknown-linux-musl" | ||
|
@@ -147,7 +147,7 @@ You don't have to use patterns of course. | |
|
||
```shell | ||
$ ssubmit --help | ||
ssubmit 0.1.1 | ||
ssubmit 0.2.0 | ||
Michael Hall <[email protected]> | ||
Submit sbatch jobs without having to create a submission script | ||
|
||
|
@@ -216,7 +216,7 @@ OPTIONS: | |
For example, to exit when the command exits with a non-zero code and to treat unset | ||
variables as an error during substitution, pass 'eu'. Pass '' or "" to set nothing | ||
|
||
[default: eux] | ||
[default: "euxo pipefail"] | ||
|
||
-S, --shebang <SHEBANG> | ||
The shell shebang for the submission script | ||
|