diff options
author | Leif Johansson <leifj@sunet.se> | 2016-11-16 10:36:52 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2016-11-16 10:36:52 +0100 |
commit | 71cfb426b1ef4c7eb506bb3bbc12984e0f4110b9 (patch) | |
tree | 41d55f96b9211e8d4d4eda0486f8e4a4f5bb035d /Makefile | |
parent | a99ac82c1a0f0777e4e4c7367c08510171bfc52c (diff) |
make sure dest exists
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ sign: swamid upstream projects rm -f $*.tbs $*.n %.pub: %.sig - xmllint --nowarning --noout --path schema --schema schema.xsd $< && mv $< $(DEST)/$*.xml + mkdir -p $(DEST) && xmllint --nowarning --noout --path schema --schema schema.xsd $< && mv $< $(DEST)/$*.xml dependencies: swamid-externals-sp-2.0.xml swamid-interfederations-idp-2.0.xml |