mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-04-22 16:17:14 +00:00
11 lines
226 B
Bash
Executable File
11 lines
226 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Need a version!"
|
|
exit 1
|
|
fi
|
|
|
|
sed -i "s/CLI_VERSION=\".*\"/CLI_VERSION=\"$1\"/g" buildroot-external/configs/*
|
|
git commit -m "OS: Update CLI $1" buildroot-external/configs/*
|