8 lines
124 B
Bash
Executable file
8 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd build
|
|
|
|
echo "Installing nano into install dir..."
|
|
make -j$(nproc) install DESTDIR=$YAPM_INSTALL_DIR
|