Skip to content

Commit

Permalink
Updated index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 23, 2024
1 parent aaa74d0 commit 5645dc8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,5 @@ jobs:
run: |
pip3 install -r requirements.txt
ls -la
pwd
python3 update-values.py
2 changes: 1 addition & 1 deletion source-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
const msg = 'Hello World!!!\n'
const msg = 'Hello World!!\n'
res.end(msg);
});

Expand Down
Empty file modified update_values.py
100644 → 100755
Empty file.

0 comments on commit 5645dc8

Please sign in to comment.