mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
9 lines
194 B
Bash
Executable File
9 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if command -v sudo >/dev/null 2>&1 && sudo -n true >/dev/null 2>&1; then
|
|
sudo chown -R "$(whoami)": /commandhistory
|
|
fi
|
|
|
|
pnpm install --frozen-lockfile
|