Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
srv
/
admin
/
scripts
/
builder
/
nodejs
/
//proc/self/root/srv/admin/scripts/builder/nodejs/copy.sh
#!/bin/bash readonly BUILDDIR="$1" readonly VHOSTPATH="$2" if [ -d "$BUILDDIR/node_modules" ]; then echo 'Copying node modules.' # do not --ignore-times because npm preserves mtime rsync -a --stats --delete "$BUILDDIR/node_modules" "$VHOSTPATH/" echo fi