Skip to content

Commit f996c4b

Browse files
committed
fix: TT-610 modificar archivo create_keys
1 parent e159752 commit f996c4b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/create-keys.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
> ./src/environments/keys.ts
2-
echo 'export const AUTHORITY = '$AUTHORITY'' >> ./src/environments/keys.ts
3-
echo 'export const CLIENT_ID = '$CLIENT_ID'' >> ./src/environments/keys.ts
4-
echo 'export const SCOPES = '$SCOPES'' >> ./src/environments/keys.ts
5-
echo 'export const STACK_EXCHANGE_ID = '$STACK_EXCHANGE_ID'' >> ./src/environments/keys.ts
6-
echo 'export const STACK_EXCHANGE_ACCESS_TOKEN = '$STACK_EXCHANGE_ACCESS_TOKEN'' >> ./src/environments/keys.ts
7-
echo 'export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = '$AZURE_APP_CONFIGURATION_CONNECTION_STRING'' >> ./src/environments/keys.ts
2+
echo "export const AUTHORITY = '${AUTHORITY}'" >> ./src/environments/keys.ts
3+
echo "export const CLIENT_ID = '${CLIENT_ID}'" >> ./src/environments/keys.ts
4+
echo "export const SCOPES = ['${SCOPES}']" >> ./src/environments/keys.ts
5+
echo "export const STACK_EXCHANGE_ID = '${STACK_EXCHANGE_ID}'" >> ./src/environments/keys.ts
6+
echo "export const STACK_EXCHANGE_ACCESS_TOKEN = '${STACK_EXCHANGE_ACCESS_TOKEN}'" >> ./src/environments/keys.ts
7+
echo "export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = '${AZURE_APP_CONFIGURATION_CONNECTION_STRING}'" >> ./src/environments/keys.ts
88
cat ./src/environments/keys.ts

0 commit comments

Comments
 (0)