Skip to content

Commit c283fac

Browse files
committed
minor fixes
1 parent dc0f16c commit c283fac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

run_locally.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export AZURE_STORAGE_SAS_TOKEN=$(az storage container generate-sas \
6363
--account-name "$AZURE_STORAGE_ACCOUNT" \
6464
--https-only \
6565
--permissions lr \
66-
--expiry "$(date -d "1 day" +"%Y-%m-%dT00:00Z")" \
66+
--expiry "$(date -d '1 day' +'%Y-%m-%dT00:00Z' 2>/dev/null || date -v+1d +'%Y-%m-%dT00:00Z')" \
6767
-otsv \
6868
)
6969
```
@@ -91,7 +91,7 @@ cd jsonfrontend/cmd/jsonfrontend/
9191
go run main.go
9292
```
9393

94-
This will connect to the `correctedforecaster`. It is possible to bypass that one, and go straight to the `radataforecaster`. To do that, add an extra option when calling the program:
94+
This will connect to the `correctedforecaster`. It is possible to bypass that one, and go straight to the `rawdataforecaster`. To do that, add an extra option when calling the program:
9595

9696
```bash
9797
cd jsonfrontend/cmd/jsonfrontend/

0 commit comments

Comments
 (0)