Skip to content

Commit

Permalink
yt-dlpのインストールに失敗することがある不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kosugikun committed Aug 10, 2024
1 parent d4698ca commit e6b51ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void updateYtDlp() {
}

log.info("Updating yt-dlp using {}.", pythonCommand);
Process process = runtime.exec(pythonCommand + " -m pip install -U --pre \"yt-dlp\"");
Process process = runtime.exec(pythonCommand + " -m pip install -U --pre yt-dlp");
process.waitFor();
process.destroy();
log.info("yt-dlp update completed.");
Expand Down

0 comments on commit e6b51ff

Please sign in to comment.