10 lines
308 B
Bash
10 lines
308 B
Bash
# Copy this file to ~/.bashrc./ for some buildenv aliases.
|
|
#
|
|
|
|
if [ ! -f "/run/.toolboxenv" ]; then
|
|
alias b='toolbox run -c creatures-buildenv b'
|
|
alias bdep='toolbox run -c creatures-buildenv bdep'
|
|
alias bpkg='toolbox run -c creatures-buildenv bpkg'
|
|
alias yarn='toolbox run -c creatures-buildenv yarn'
|
|
fi
|