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
sd | Updating conda env: ldm ... | |
sd | Collecting package metadata (repodata.json): ...working... done | |
sd | Solving environment: ...working... done | |
sd | | |
sd | | |
sd | ==> WARNING: A newer version of conda exists. <== | |
sd | current version: 4.12.0 | |
sd | latest version: 4.14.0 | |
sd | | |
sd | Please update conda by running |
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
def checkIfTracked = { -> | |
def stdout = new ByteArrayOutputStream() | |
exec { | |
commandLine 'git', 'status', '--porcelain' | |
standardOutput = stdout | |
} | |
return stdout.toString().trim().equals("") ? "" : "-MODIFIED" | |
} | |
def getGitCommitDate = { -> |