mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
7 lines
104 B
Bash
7 lines
104 B
Bash
#!/bin/sh
|
|
|
|
for x in "$@" ; do
|
|
dir="$(dirname $x)"
|
|
mv "$DESTDIR"/"$x" "$DESTDIR"/"$dir"/module.so
|
|
done
|