pamac-classic/meson_scripts/install_data.sh

8 lines
106 B
Bash
Raw Normal View History

2017-10-16 13:40:34 -03:00
#!/bin/sh
mkdir -p $DESTDIR/$1
if [[ -d $2 ]]; then
cp -a $2/* $DESTDIR/$1
else
cp -a $2 $DESTDIR/$1
fi