Housekeepting - Shebangs and permisions (sudo)
Added an explicit host setting so Jekyll serves docs on all interfaces in debugDocs.sh Documented the signing command for the release package in signPackage.sh Inserted shebangs for various helper scripts such as makePackage.sh to ensure they run correctly as standalone scripts
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
wpa_cli -ip2p-dev-wlan0 GET device_name pipedal
|
wpa_cli -ip2p-dev-wlan0 GET device_name pipedal
|
||||||
wpa_cli -ip2p-dev-wlan0 GET country CA
|
wpa_cli -ip2p-dev-wlan0 GET country CA
|
||||||
wpa_cli -ip2p-dev-wlan0 GET device_type 1-0050F204-1
|
wpa_cli -ip2p-dev-wlan0 GET device_type 1-0050F204-1
|
||||||
|
|||||||
+1
-1
@@ -6,4 +6,4 @@
|
|||||||
# bundle install
|
# bundle install
|
||||||
#
|
#
|
||||||
cd docs
|
cd docs
|
||||||
bundle exec jekyll serve --host
|
bundle exec jekyll serve --host 0.0.0.0
|
||||||
+2
-1
@@ -1,3 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
cd build
|
cd build
|
||||||
cpack -G DEB -C Release -config CPackConfig.cmake
|
cpack -G DEB -C Release -config CPackConfig.cmake
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||||
${SCRIPT_DIR}/../build/src/profilePlugin -s 100 -w ToobNam_Profile -o /tmp/ToobNam.perf &&\
|
${SCRIPT_DIR}/../build/src/profilePlugin -s 100 -w ToobNam_Profile -o /tmp/ToobNam.perf &&\
|
||||||
google-pprof --text ${SCRIPT_DIR}/../build/src/profilePlugin --add_lib /usr/lib/lv2/ToobAmp.lv2/ToobAmp.so /tmp/ToobNam.perf >./ToobNam.txt
|
google-pprof --text ${SCRIPT_DIR}/../build/src/profilePlugin --add_lib /usr/lib/lv2/ToobAmp.lv2/ToobAmp.so /tmp/ToobNam.perf >./ToobNam.txt
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||||
${SCRIPT_DIR}/../build/src/profilePlugin -w Nam_Profile -o /tmp/nam.perf &&\
|
${SCRIPT_DIR}/../build/src/profilePlugin -w Nam_Profile -o /tmp/nam.perf &&\
|
||||||
google-pprof --web ${SCRIPT_DIR}/../build/src/profilePlugin --add_lib /usr/lib/lv2/neural_amp_modeler.lv2/neural_amp_modeler.so /tmp/nam.perf >./nam.txt
|
google-pprof --web ${SCRIPT_DIR}/../build/src/profilePlugin --add_lib /usr/lib/lv2/neural_amp_modeler.lv2/neural_amp_modeler.so /tmp/nam.perf >./nam.txt
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
rm -rf ./lv2/aarch64/*
|
rm -rf ./lv2/aarch64/*
|
||||||
|
|
||||||
cp -R /usr/lib/lv2/ToobAmp.lv2/ ./lv2/aarch64/
|
cp -R /usr/lib/lv2/ToobAmp.lv2/ ./lv2/aarch64/
|
||||||
|
|||||||
+5
-1
@@ -11,4 +11,8 @@
|
|||||||
# to NOT do auto-updating (probably best). The build doesn't currently have a procedure for
|
# to NOT do auto-updating (probably best). The build doesn't currently have a procedure for
|
||||||
# knocking out Auto-Update from UpdaterSecurity.hpp. But I would happily accept a pull request
|
# knocking out Auto-Update from UpdaterSecurity.hpp. But I would happily accept a pull request
|
||||||
# to bring such a feature back into mainline if you do it.
|
# to bring such a feature back into mainline if you do it.
|
||||||
build/src/makeRelease
|
|
||||||
|
# Build the release package and create a detached GPG signature. This
|
||||||
|
# command assumes you have already run makePackage.sh so the .deb file
|
||||||
|
# exists in the build directory.
|
||||||
|
./build/src/makeRelease
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
#/usr/bin/sudo /usr/bin/bash
|
#!/usr/bin/sudo /usr/bin/bash
|
||||||
# CMake doesn't have an uninstall option, so remove files manually.
|
# CMake doesn't have an uninstall option, so remove files manually.
|
||||||
export PREFIX=/usr
|
export PREFIX=/usr
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
valgrind --leak-check=full --log-file=vg.output ./build/src/pipedald /etc/pipedal/config ./vite/dist -port 0.0.0.0:8080 -log-level debug
|
valgrind --leak-check=full --log-file=vg.output ./build/src/pipedald /etc/pipedal/config ./vite/dist -port 0.0.0.0:8080 -log-level debug
|
||||||
|
|||||||
Reference in New Issue
Block a user