chore(video-merger): enable strict shell mode in install.sh - #634
chore(video-merger): enable strict shell mode in install.sh#634Tiktokaiagent wants to merge 1 commit into
Conversation
Switch shebang from #!/bin/bash to #!/usr/bin/env bash and add set -euo pipefail to match the rest of the repo. Fixes use-agent-os#525
|
Process note: this PR is not tracked by an open issue. Every PR in this repository must map to one corresponding issue so we can triage, prioritise, and avoid duplicate work across contributors. The workflow is: open an issue first → wait for a maintainer to triage and label it → then open the PR that references it. The body says |
|
Closing this PR: the issue it references, #525, is already closed, so there is nothing tracking this change. Per the note above, please open an issue first and wait for it to be triaged and labelled before submitting a PR. |
Summary
Every other shell script in this repository uses
set -euo pipefailfor safety. The video-mergerinstall.shwas the lone outlier.Changes
#!/bin/bashto#!/usr/bin/env bash(matches the rest of the repo)set -euo pipefailimmediately after the shebangFixes #525