Unify julia scripts style

This commit is contained in:
Ayaz Salikhov
2023-07-01 11:45:39 +04:00
parent 095717cb57
commit 98d700d84d
2 changed files with 3 additions and 2 deletions

View File

@@ -1,8 +1,9 @@
#!/bin/bash #!/bin/bash
set -exuo pipefail
# Requirements: # Requirements:
# - Run as non-root user # - Run as non-root user
# - The JULIA_PKGDIR environment variable is set
# - Julia is already set up, with the setup-julia.bash command # - Julia is already set up, with the setup-julia.bash command
set -exuo pipefail
# Install base Julia packages # Install base Julia packages
julia -e ' julia -e '

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -exuo pipefail set -exuo pipefail
# Requirements: # Requirements:
# - This script is run as the root user # - Run as the root user
# - The JULIA_PKGDIR environment variable is set # - The JULIA_PKGDIR environment variable is set
# Default julia version to install if env var is not set # Default julia version to install if env var is not set