Fix syntax mistake in README (#55)

This commit is contained in:
James M. Greene 2019-08-13 17:13:12 -05:00 committed by Danny McCormick
parent 8662b07822
commit 9821b26794

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`);
}
```