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