mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
b008cac781
* Fix parameters in netlify cli script * Use node-modules linker when deploying to netlify Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
10 lines
208 B
Bash
Executable file
10 lines
208 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#
|
|
# SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
|
|
NETLIFY_VERSION=10.13.0
|
|
exec npx --yes netlify-cli@${NETLIFY_VERSION} $@
|