mirror of
https://gitcode.com/gh_mirrors/ar/arduino-littlefs-upload.git
synced 2025-08-23 08:31:57 +08:00
5 lines
98 B
Bash
Executable File
5 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
tmp=$(mktemp)
|
|
jq '.version = "'$1'"' ./package.json > "$tmp"
|
|
mv "$tmp" ./package.json
|