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.
15 lines
333 B
15 lines
333 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
cd "$(dirname $0)/../src"
|
||
|
|
||
|
echo "Creating links..."
|
||
|
|
||
|
ln -nsf ../../apps.json drivers/npm
|
||
|
ln -nsf ../../wappalyzer.js drivers/npm
|
||
|
|
||
|
ln -nsf ../../apps.json drivers/webextension
|
||
|
ln -nsf ../../../wappalyzer.js drivers/webextension/js
|
||
|
ln -nsf ../../../icons/ drivers/webextension/images/icons
|
||
|
|
||
|
echo "Done."
|