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 9c67068 commit 159d90bCopy full SHA for 159d90b
src/client.js
@@ -173,7 +173,7 @@ export class SalesforceClient {
173
msg,
174
};
175
console.error(msg);
176
- console.error(data);
+ console.error(data.response);
177
throw new Error(error);
178
}
179
return {
@@ -227,7 +227,7 @@ export class SalesforceClient {
227
228
229
230
231
232
233
test/integ/deploy_and_test_apex.sh
@@ -1,5 +1,8 @@
1
#!/usr/bin/env bash
2
3
+# Abort the script if any of the commands below is not executed successfully
4
+set -e
5
+
6
#
7
# Change events
8
0 commit comments