mirror of
https://github.com/ProtonMail/protoncore_ios.git
synced 2026-01-16 23:00:24 +00:00
Add breadcrumbs when starting and finishing web requests, so that there is a timeline of the API-related errors, like token refresh and session mishandling errors. Jira-Id: VPNAPPL-2113
13 lines
318 B
Bash
Executable file
13 lines
318 B
Bash
Executable file
#!/bin/bash -x
|
|
|
|
THIS_DIR=$(pwd)
|
|
|
|
if [[ ! -f "$THIS_DIR/libraries/ObfuscatedConstants/Scripts/create_obfuscated_constants.sh" ]]; then
|
|
cd ..
|
|
THIS_DIR=$(pwd)
|
|
fi
|
|
|
|
cd $THIS_DIR/libraries/ObfuscatedConstants/Scripts
|
|
echo "$(pwd)/create_obfuscated_constants.sh"
|
|
bash create_obfuscated_constants.sh
|
|
cd $THIS_DIR
|