1
0
Fork 0

Fix syntax mistake in README (#55)

pull/62/head
James M. Greene 2019-08-13 17:13:12 -05:00 committed by Danny McCormick
parent 8662b07822
commit 9821b26794
1 changed files with 1 additions and 1 deletions

View File

@ -76,6 +76,6 @@ try {
// Do stuff
}
catch (err) {
core.error('Error ${err}, action may still succeed though');
core.error(`Error ${err}, action may still succeed though`);
}
```