mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05:00
9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/sh
|
|
|
|
VALUE=$1
|
|
|
|
find public .next -type f -name "*.js" |
|
|
while read file; do
|
|
sed -i "s|TELEMETRY_CAPTURING_ENABLED|$VALUE|g" "$file"
|
|
done
|