Skip to content

Commit

Permalink
fix: Windows build issue due to CRLF on shell scripts (#98)
Browse files Browse the repository at this point in the history
* chore: adjusted multiple files from CRLF to LF line endings while troubleshooting #67

* chore: removed hardcoded -q from ash_helpers.ps1

* chore: removed hardcoded -q from ash_helpers.ps1

* chore: bumped version, updated CHANGELOG
  • Loading branch information
scrthq authored Jul 3, 2024
1 parent e9e92f8 commit 6ae7d8c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Automated Security Helper - CHANGELOG

- [v1.4.0](#v140)
- [v1.4.1](#v141)
- [What's Changed](#whats-changed)
- [v1.3.3](#v133)
- [v1.4.0](#v140)
- [What's Changed](#whats-changed-1)
- [v1.3.2](#v132)
- [v1.3.3](#v133)
- [What's Changed](#whats-changed-2)
- [v1.3.2](#v132)
- [What's Changed](#whats-changed-3)
- [New Contributors](#new-contributors)
- [1.3.0 - 2024-04-17](#130---2024-04-17)
- [Features](#features)
Expand All @@ -18,6 +20,12 @@
- [1.0.5-e-06Mar2023](#105-e-06mar2023)
- [1.0.1-e-10Jan2023](#101-e-10jan2023)

## v1.4.1

### What's Changed

- Fixed line endings on relevant files from CRLF to LF to resolve Windows build issues

## v1.4.0

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "automated-security-helper"
version = "1.4.0"
version = "1.4.1"
description = ""
authors = ["Nate Ferrell <[email protected]>", "Nathan Bates <[email protected]>"]
license = "Apache-2.0"
Expand Down
3 changes: 1 addition & 2 deletions utils/ash_helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ function Invoke-ASH {
'-t'
$AshImageName
"'$ashRoot'"
$($buildArgs -join ' '
'-q')
$($buildArgs -join ' ')
) -join ' '
$runCmd = @(
$RESOLVED_OCI_RUNNER
Expand Down

0 comments on commit 6ae7d8c

Please sign in to comment.