mirror of
https://github.com/XTXMarkets/ternfs.git
synced 2026-05-23 06:40:18 -05:00
8 lines
252 B
Bash
Executable File
8 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd $SCRIPT_DIR
|
|
|
|
rsync -vaxAXL --include '*.py' --include '*.c' --include '*.h' --include 'Makefile' --exclude '*' ./ $1:eggs/kmod/
|