diff --git a/scripts/docs-build.sh b/scripts/docs-build.sh index 4854db92e..60c28d121 100755 --- a/scripts/docs-build.sh +++ b/scripts/docs-build.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + set -euo pipefail # We still need the main project to have all depedencies diff --git a/src/core/shapeAdjustments.ts b/src/core/shapeAdjustments.ts old mode 100755 new mode 100644 diff --git a/src/test/suite/followLink.test.ts b/src/test/suite/followLink.test.ts index 9f38ce8cb..ed6ac7ef7 100644 --- a/src/test/suite/followLink.test.ts +++ b/src/test/suite/followLink.test.ts @@ -69,5 +69,5 @@ async function followLink() { const editor = vscode.window.activeTextEditor; assert.equal(editor?.document?.uri?.scheme, "file"); - assert.equal(editor?.document.getText(), "hello world"); + assert.equal(editor?.document.getText().trimEnd(), "hello world"); } diff --git a/src/util/canonicalizeActionName.ts b/src/util/canonicalizeActionName.ts old mode 100755 new mode 100644 diff --git a/src/util/canonicalizeTargets.ts b/src/util/canonicalizeTargets.ts old mode 100755 new mode 100644