Fix bash on NixOS
Not all systems have their bash under bin.
This commit is contained in:
parent
12a757a954
commit
547c6fc17b
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -17,7 +17,7 @@ function searchYoutube(q, limit, response) {
|
|||
q = escape(`ytsearch${limit}:${q}`);
|
||||
const command = `set -o pipefail; ${cmd} -j ${q} | jq "{id,title}" | jq -s .`;
|
||||
|
||||
require("child_process").exec(command, {shell:"/bin/bash"}, (error, stdout, stderr) => {
|
||||
require("child_process").exec(command, {shell:"bash"}, (error, stdout, stderr) => {
|
||||
if (error) {
|
||||
console.log("error", error);
|
||||
response.writeHead(500);
|
||||
|
|
Loading…
Reference in a new issue