mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
8 lines
142 B
Bash
8 lines
142 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$(ls -A ".yarncache")" ]; then
|
||
|
cp -r /workspaces/ghost/.yarncachecopy/* /workspaces/ghost/.yarncache/
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|