mirror of
https://github.com/github/codeql-action.git
synced 2026-05-08 06:40:19 +00:00
Make the default github.com path consistent with other paths
On util.ts:223, there is the following comment: ``` // Normalise path to having a trailing slash for consistency ``` However, I notice that the path defined by `GITHUB_DOTCOM_URL` does not have a trailing slash. This PR fixes it.
This commit is contained in:
Generated
+1
-1
@@ -17,7 +17,7 @@ const apiCompatibility = __importStar(require("./api-compatibility.json"));
|
||||
/**
|
||||
* The URL for github.com.
|
||||
*/
|
||||
exports.GITHUB_DOTCOM_URL = "https://github.com";
|
||||
exports.GITHUB_DOTCOM_URL = "https://github.com/";
|
||||
/**
|
||||
* Get the extra options for the codeql commands.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user