-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When running `verdi code export`, the generated yaml file is automatically sorted. However, the resulting alphabetical ordering is not what is typically found in the code yaml files in the `aiida-code-registry` and `aiida-resource-registry`. The `--sort/--no-sort` switch is added to allow toggling the sorting of the keys in the output YAML.
- Loading branch information
Showing
4 changed files
with
29 additions
and
3 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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
label: code | ||
description: '' | ||
default_calc_job_plugin: core.arithmetic.add | ||
use_double_quotes: 'False' | ||
prepend_text: "module load something\n some command" | ||
append_text: '' | ||
computer: localhost | ||
filepath_executable: /bin/cat |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
append_text: '' | ||
computer: localhost | ||
default_calc_job_plugin: core.arithmetic.add | ||
description: '' | ||
filepath_executable: /bin/cat | ||
label: code | ||
prepend_text: "module load something\n some command" | ||
use_double_quotes: 'False' |