-
I think the vars are being set in a subshell, try this instead:
```bash
aws-sso-cli() {
while read -r line; do
if [[ $line =~ ^export ]]; then
eval $line
fi
done <
-
A quick fix is `exec bash`, but that will invoke new process and the user will loose existing jobs and command history
-
Hi Team
The Run Cell button does not seem to load `.bashrc` after the recent update.
Is there anyway to load User profiles or any custom/external ENV vars for each run?
Thanks!
-
This may be an Anaconda issue. Haven't tried replicating yet.
When I was prompted to install Anaconda I did that and was able to start Rodeo from the command line without problems. However, the me…
-
Hello, I am reading your paper and would like to use your code to run some experiments. Thank you for your code!
However, I am having difficulty configuring the environment, especially for the file…
-
@murjax who uses a zsh configuration.
if you could put the bashrc.local information in this repository
Into your ~/.bashrc.local
And then recreate how to enable that into your zshrc from the…
-
i recently aliased ls in .bashrc:
alias ls='lsd'
at the bottom of .bashrc, i have
source /usr/local/share/chruby/chruby.sh
which now errors out on the unsupported -A flag
a change of li…
-
Which is fine for now but we should switch to SLES15 at some point.
Does this mean we have to update runners to Milan nodes? @jardizzo
And `gmao_ci` account should connect to SLES15 (just addin…
-
Enrico Lusiani (#elusian), 2021-11-25 10:42:01 UTC
I'm not sure if this counts as a bug, but it was for sure an unexpected behaviour.
Due to the configuration in the de…
-
Because the setup scripts are written to run aws_prep.sh and gurobi_install.sh under sudo, changes get written to root's .bashrc instead of ec2-user's .bashrc. This creates permission denied errors do…