Merge pull request #20 from SuperSandro2000/master

Fix bash location on nixOS, fix download ids start with -
This commit is contained in:
Ondřej Žára 2020-09-26 14:07:16 +02:00 committed by GitHub
commit c04b8f633b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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);
@ -36,6 +36,7 @@ function downloadYoutube(id, response) {
let args = [
"-f", "bestaudio",
"-o", `${__dirname}/_youtube/%(title)s-%(id)s.%(ext)s`,
"--",
id
]
let child = require("child_process").spawn(cmd, args);