blob: afc976edc57acc7487792af6e9b62d448f601a2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
set -e
auto_envsubst() {
input_path="build/next.template"
output_path="build/next"
cp -r "$input_path" "$output_path"
find "$output_path" -type f -name '*.js' -exec perl -pi -e 's/%%(NEXT_PUBLIC_[_A-Z0-9]+)%%/$ENV{$1}/g' {} \;
}
auto_envsubst
exit 0
|