You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
278 B
26 lines
278 B
#!/bin/bash
|
|
set -e
|
|
|
|
P_UID=1000
|
|
P_GID=1000
|
|
|
|
cd /opt
|
|
|
|
mkdir cache
|
|
cd cache
|
|
mkdir composer JetBrains yarn
|
|
|
|
cd /opt
|
|
mkdir npm nvm projects pyenv
|
|
|
|
mkdir share
|
|
cd share
|
|
mkdir JetBrains pnpm
|
|
|
|
chown -R $P_UID:$P_GID \
|
|
cache \
|
|
npm \
|
|
nvm \
|
|
projects \
|
|
pyenv \
|
|
share
|