-
-
Save urouro-net/2cd40307cb0d386cfc72d3c7d244c1ce to your computer and use it in GitHub Desktop.
XCLogParser CLI Tips
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PROJECT_DIR=$(pwd) | |
export PROJECT_NAME= # YOUR_PROJECT_NAME | |
source scripts/xclogparser.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open "./.build/xclogparser/$(ls -al .build/xclogparser/ | peco | awk '{ print $9 }')/index.html" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -xe | |
mkdir -p "${PROJECT_DIR}/.build/logs" | |
mint run xclogparser parse \ | |
--project ${PROJECT_NAME} \ | |
--reporter html \ | |
--output "${PROJECT_DIR}/.build/xclogparser" > "${PROJECT_DIR}/.build/logs/buildPostAction.txt" 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment