Fix using development papeaks binary instead of system one

This commit is contained in:
futpib 2018-12-16 04:33:54 +03:00
parent a405039c9b
commit 3b16d532ef

View File

@ -17,10 +17,11 @@ const PA_SUBSCRIPTION_EVENT_SINK_INPUT = 0x0002;
const VolumePeaksContext = React.createContext(null);
function spawnProcess({ onPeak, onExit }) {
const process = spawn('/home/futpib/code/papeaks/target/release/papeaks', [
const process = spawn('papeaks', [
'--output',
'binary',
], {
shell: true,
stdio: [ 'ignore', 'pipe', 'inherit' ],
});