1
mirror of https://github.com/hashcat/hashcat synced 2025-01-14 08:17:28 +01:00

Update appveyor to not check dev branch

This commit is contained in:
jsteube 2018-12-19 15:20:48 +01:00
parent 33e9ffc24e
commit 15f546bc4e
2 changed files with 7 additions and 2 deletions

View File

@ -21,6 +21,10 @@ environment:
BASH: C:\msys64\usr\bin\bash
CC: gcc
branches:
except:
- hash-mode-plugin
# if we have too many commits at the same time, we might need to download more than just the last commit for appveyor to succeed
# otherwise we get the error: "fatal: reference is not a tree <commit>"
clone_depth: 15

View File

@ -540,13 +540,14 @@ endif
##
MODULE_DEPEND := src/bitops.c src/convert.c src/interface.c src/shared.c
MODULES_SRC := $(wildcard modules/*.c)
MODULES := $(patsubst %.c, %.so, $(MODULES_SRC))
MODULES_LIB := $(patsubst %.c, %.so, $(MODULES_SRC))
modules/module_%.so: modules/module_%.c
$(CC) $(CFLAGS_NATIVE) $< -o $@ -shared -fPIC $(MODULE_DEPEND)
modules: $(MODULES)
modules: $(MODULES_LIB)
##
## cross compiled hashcat