mirror of
https://github.com/penpot/penpot.git
synced 2025-07-26 01:37:19 +02:00
* ✨ Add minor changes to devenv for avoid repeated dependency download * ✨ Add minor changes to devenv for integrate payments service * ✨ Remove playwright deps install from circleci config * ✨ Move cargo_home to userspace on devenv start * ✨ Improve cache management on CI * ✨ Improve cargo installation * ✨ Add missing playwright install cmd on CI * ✨ Install cargo-watch on devenv --------- Co-authored-by: David Barragán Merino <david.barragan@kaleidos.net>
15 lines
333 B
Bash
15 lines
333 B
Bash
#!/usr/bin/env bash
|
|
|
|
export JAVA_OPTS=${JAVA_OPTS:-"-Xmx1000m -Xms200m"};
|
|
EMSDK_QUIET=1 . /home/emsdk/emsdk_env.sh;
|
|
|
|
alias l='ls --color -GFlh'
|
|
alias rm='rm -r'
|
|
alias ls='ls --color -F'
|
|
alias lsd='ls -d *(/)'
|
|
alias lsf='ls -h *(.)'
|
|
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc.local" ]; then
|
|
. "$HOME/.bashrc.local"
|
|
fi
|