Skip to content

Commit

Permalink
debuggggggggggggg
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jul 23, 2023
1 parent 735d250 commit 49cb4a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ const execute = async (command, options = {}) => {
const run = async () => {
const requirementsContent = "rstfmt==0.0.13\n";
fs.writeFileSync("./requirements.txt", requirementsContent);
await execute("ls"); // For debugging
// type "ls" on the command line and execute it:
await execute("echo $HOME", { silent: true });
await execute("pip install -r requirements.txt", { silent: true });
const filesPattern = core.getInput("files") || "**/*.rst";
const commitString = core.getInput("commit") || "true";
Expand Down
4 changes: 3 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ const execute = async (
const run = async () => {
const requirementsContent = "rstfmt==0.0.13\n";
fs.writeFileSync("./requirements.txt", requirementsContent);
await execute("ls"); // For debugging
// type "ls" on the command line and execute it:
await execute("echo $HOME", { silent: true });


await execute("pip install -r requirements.txt", { silent: true });

Expand Down

0 comments on commit 49cb4a2

Please sign in to comment.