mirror of
https://github.com/penpot/penpot.git
synced 2026-05-08 01:28:44 +00: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>
8 lines
81 B
Bash
Executable File
8 lines
81 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
usermod -u ${EXTERNAL_UID:-1000} penpot;
|
|
|
|
exec "$@"
|