diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 20:03:39 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-01 20:03:39 +0000 |
| commit | 8e05d4390d2af608edf5829583b63f3054760c02 (patch) | |
| tree | ec04a960946360c9c4e31a3445739753b50789d7 | |
| parent | 3e4c5a6261770bced301b5e74233e7866166ea5b (diff) | |
| download | emulator-bug-study-8e05d4390d2af608edf5829583b63f3054760c02.tar.gz emulator-bug-study-8e05d4390d2af608edf5829583b63f3054760c02.zip | |
fix gitignores and shell.nix files
| -rw-r--r-- | classification/.gitignore | 1 | ||||
| -rw-r--r-- | gitlab/.gitignore | 2 | ||||
| -rw-r--r-- | gitlab/shell.nix | 1 | ||||
| -rw-r--r-- | mailinglist/.gitignore | 2 | ||||
| -rw-r--r-- | mailinglist/shell.nix | 1 |
5 files changed, 7 insertions, 0 deletions
diff --git a/classification/.gitignore b/classification/.gitignore new file mode 100644 index 00000000..53752db2 --- /dev/null +++ b/classification/.gitignore @@ -0,0 +1 @@ +output diff --git a/gitlab/.gitignore b/gitlab/.gitignore new file mode 100644 index 00000000..2880421c --- /dev/null +++ b/gitlab/.gitignore @@ -0,0 +1,2 @@ +issues_toml +issues_text diff --git a/gitlab/shell.nix b/gitlab/shell.nix index 5669f4f4..4e41b4ff 100644 --- a/gitlab/shell.nix +++ b/gitlab/shell.nix @@ -3,5 +3,6 @@ with pkgs; mkShell { buildInputs = [ python312Packages.tomlkit + python312Packages.requests ]; } diff --git a/mailinglist/.gitignore b/mailinglist/.gitignore new file mode 100644 index 00000000..0d0ac50d --- /dev/null +++ b/mailinglist/.gitignore @@ -0,0 +1,2 @@ +output_launchpad +output_mailinglist diff --git a/mailinglist/shell.nix b/mailinglist/shell.nix index 67eae57e..fcca0cfd 100644 --- a/mailinglist/shell.nix +++ b/mailinglist/shell.nix @@ -4,5 +4,6 @@ mkShell { buildInputs = [ python312Packages.html5lib python312Packages.beautifulsoup4 + python312Packages.requests ]; } |