Skip to content

Commit 24192e6

Browse files
committed
Remove DS Store ignores
1 parent 2f64f33 commit 24192e6

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

templates/cli/base/params.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
const func = localConfig.getFunction(functionId);
1818

1919
ignorer.add('.appwrite');
20-
ignorer.add('.DS_Store');
2120

2221
if (func.ignore) {
2322
ignorer.add(func.ignore);

templates/cli/lib/commands/run.js.twig

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ const runFunction = async ({ port, functionId, noVariables, noReload, userId } =
183183
if(!noReload) {
184184
const ignorer = ignore();
185185
ignorer.add('.appwrite');
186-
ignorer.add('.DS_Store');
187186
ignorer.add('code.tar.gz');
188187

189188
if (func.ignore) {
@@ -250,7 +249,6 @@ const runFunction = async ({ port, functionId, noVariables, noReload, userId } =
250249

251250
const ignorer = ignore();
252251
ignorer.add('.appwrite');
253-
ignorer.add('.DS_Store');
254252
if (func.ignore) {
255253
ignorer.add(func.ignore);
256254
} else if (fs.existsSync(path.join(functionPath, '.gitignore'))) {

templates/cli/lib/emulation/docker.js.twig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ async function dockerStart(func, variables, port) {
134134

135135
const ignorer = ignore();
136136
ignorer.add('.appwrite');
137-
ignorer.add('.DS_Store');
138137
if (func.ignore) {
139138
ignorer.add(func.ignore);
140139
} else if (fs.existsSync(path.join(functionDir, '.gitignore'))) {

0 commit comments

Comments
 (0)