You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
14 lines
326 B
Bash
Executable File
14 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
set -e
|
|
|
|
SCRIPT_PATH=$0
|
|
if [ -h $SCRIPT_PATH ]; then
|
|
SCRIPT_PATH=$(dirname $SCRIPT_PATH)/$(readlink $SCRIPT_PATH)
|
|
fi
|
|
cd $(dirname $SCRIPT_PATH)
|
|
|
|
# Swallow the arguments passed in to this script; we don't need them when running a hook
|
|
./GitDependencies.sh
|