We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d01ea11 commit 9bc1f5fCopy full SHA for 9bc1f5f
AppHandling/Sort-AppFoldersByDependencies.ps1
@@ -56,7 +56,9 @@ try {
56
}
57
else {
58
$appJson =[System.IO.File]::ReadAllLines($appJsonFile) | ConvertFrom-Json
59
-
+ if (-not $appJson) {
60
+ throw "$appJsonFile isn't a valid json file."
61
+ }
62
# replace id with appid
63
if ($appJson.psobject.Members | Where-Object name -eq "dependencies") {
64
if ($appJson.dependencies) {
ReleaseNotes.txt
@@ -1,5 +1,6 @@
1
6.1.5
2
Include AuthContext and Environment in Parameters for InstallMissingDependencies when called from Run-AlPipeline
3
+AL-Go issue 1695 Fail early if app.json cannot be read
4
5
6.1.4
6
Issue 3882 Run-AlPipeline with CompilerFolder and Container defined fails when running tests
0 commit comments