I am having a problem finding out how to open and read angular build log file, since its only in temporary memory for deployment. Here is the output:
+ ng build
Your global Angular CLI version (8.3.24) is greater than your local
version (8.3.21). The local Angular CLI version is used.
To disable this warning use "ng config -g cli.warnings.versionMismatch false".
Generating ES5 bundles for differential loading...
An unhandled exception occurred: Call retries were exceeded
See "/tmp/ng-bydgvB/angular-errors.log" for further details.
I assume the problem is the random part in the path after /tmp ?
can you use after-script and print any file that matches a pattern? like `cat /tmp/*/angular-errors.log`
more info on after-script - https://bitbucket.org/blog/after-scripts-now-available-for-bitbucket-pipelines
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.