Skip to content

Commit

Permalink
Remove makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Jan 28, 2023
1 parent 28d76c8 commit f199213
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hacs/default",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.10-bullseye",
"postCreateCommand": "python3 -m pip install -r requirements.txt",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.10",
"postCreateCommand": "scripts/setup",
"context": ".",
"extensions": [
"ms-python.python",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
path: /tmp/repositories

- name: Install dependencies if needed
run: make init
run: scripts/setup

- name: Run the check
run: python3 -m scripts.check.owner
Expand All @@ -98,7 +98,7 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies if needed
run: make init
run: scripts/setup

- name: Run the check
run: python3 -m scripts.check.edits
Expand Down
22 changes: 0 additions & 22 deletions Makefile

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/remove → scripts/remove_repository
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ echo $reason
echo $removal_type
echo $link

python3 scripts/remove_repo.py "$repository" "$removal_type" "$reason" "$link" || exit 0
python3 $(dirname "$0")/remove_repo.py "$repository" "$removal_type" "$reason" "$link" || exit 0
3 changes: 3 additions & 0 deletions scripts/setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

python3 -m pip install -r requirements.txt
3 changes: 3 additions & 0 deletions scripts/sort
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

python3 $(dirname "$0")/sort.py

0 comments on commit f199213

Please sign in to comment.