mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 05:27:03 +00:00
16 lines
291 B
Bash
Executable File
16 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
chmod +x capp_lint
|
|
|
|
if [[ ! -d /usr/local/narwhal/bin ]]; then
|
|
mkdir -p /usr/local/narwhal/bin
|
|
fi
|
|
|
|
cp capp_lint /usr/local/narwhal/bin
|
|
|
|
if [[ ! -d /usr/local/share/man/man1 ]]; then
|
|
mkdir -p /usr/local/share/man/man1
|
|
fi
|
|
|
|
cp capp_lint.1 /usr/local/share/man/man1
|