Skip to content

Commit 5f1c049

Browse files
committed
1.4.17
Signed-off-by: George M Dias <GDIAS@MITRE.ORG>
1 parent b761ade commit 5f1c049

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.16
1+
1.4.17

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mitre/saf",
33
"description": "The MITRE Security Automation Framework (SAF) Command Line Interface (CLI) brings together applications, techniques, libraries, and tools developed by MITRE and the security community to streamline security automation for systems and DevOps pipelines.",
4-
"version": "1.4.16",
4+
"version": "1.4.17",
55
"author": "The MITRE Security Automation Framework",
66
"bin": "./bin/run",
77
"bugs": "https://github.com/mitre/saf/issues",

release-prep.ps1

+5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,12 @@ Write-Host
8181
#------------------------------------------------------------------------------
8282
# Pull the main branch content from github
8383
Write-Output "Pull the main branch from github..." | Yellow
84+
$Error.Clear()
8485
git pull origin main
86+
if ($LastExitCode -gt 0) {
87+
Write-Output " Failed to Pull the main branch from github" | Red
88+
TerminateScript
89+
}
8590
Write-Output "Done" | Green
8691
Write-Host
8792

0 commit comments

Comments
 (0)