Fix using development papeaks binary instead of system one
This commit is contained in:
parent
a405039c9b
commit
3b16d532ef
|
@ -17,10 +17,11 @@ const PA_SUBSCRIPTION_EVENT_SINK_INPUT = 0x0002;
|
||||||
const VolumePeaksContext = React.createContext(null);
|
const VolumePeaksContext = React.createContext(null);
|
||||||
|
|
||||||
function spawnProcess({ onPeak, onExit }) {
|
function spawnProcess({ onPeak, onExit }) {
|
||||||
const process = spawn('/home/futpib/code/papeaks/target/release/papeaks', [
|
const process = spawn('papeaks', [
|
||||||
'--output',
|
'--output',
|
||||||
'binary',
|
'binary',
|
||||||
], {
|
], {
|
||||||
|
shell: true,
|
||||||
stdio: [ 'ignore', 'pipe', 'inherit' ],
|
stdio: [ 'ignore', 'pipe', 'inherit' ],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user