10 lines
374 B
Bash
10 lines
374 B
Bash
#!/bin/bash
|
|
#
|
|
# Homebridge needs to move plugins around during updates so plugins can't be mounted directly
|
|
echo \n\n\n======================================================================\n\n\n
|
|
cp -r /tmp/plugins/* /homebridge/node_modules
|
|
ls -l /homebridge/node_modules
|
|
echo \n\n\n======================================================================\n\n\n
|
|
|
|
exec /init
|