Skip to content

Commit b557daa

Browse files
committed
Clarify one error message
1 parent e3560d8 commit b557daa

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,3 @@ jobs:
5252
path: |
5353
${{github.workspace}}/bin/anisette-server-i686
5454
55-
build-debug-rh:
56-
runs-on: ubuntu-22.04
57-
58-
steps:
59-
- uses: actions/checkout@v3
60-
with:
61-
submodules: recursive
62-
63-
- name: Install dependencies
64-
run: sudo apt-get update && sudo apt-get install -y dub ldc clang libz-dev
65-
66-
- name: Build
67-
run: dub build :retrieve-headers
68-
69-
- name: Rename
70-
run: mv "${{github.workspace}}/bin/provision_retrieve-headers" "${{github.workspace}}/bin/retrieve-headers-debug"
71-
72-
- uses: actions/upload-artifact@v3
73-
with:
74-
name: retrieve-headers-debug
75-
path: ${{github.workspace}}/bin/retrieve-headers-debug

lib/provision/adi.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ string toString(ADIError error) {
498498
string formatString;
499499
switch (cast(int) error) {
500500
case -45001:
501-
formatString = "invalid parameters (%d)";
501+
formatString = "invalid parameters (%d), or missing initialization bits, you need to set an identifier and a valid provisioning path first!";
502502
break;
503503
case -45002:
504504
formatString = "invalid parameters (for decipher) (%d)";

0 commit comments

Comments
 (0)