...

Text file src/github.com/google/flatbuffers/tests/FlatBuffers.Test/clean.sh

Documentation: github.com/google/flatbuffers/tests/FlatBuffers.Test

     1#!/bin/sh
     2
     3# Remove files and directory that are needed to build and run the .NET tests.
     4# The script NetTest.sh installs these as needed.
     5
     6[ -d .dotnet_tmp ] && rm -rf .dotnet_tmp
     7[ -d packages ] && rm -rf packages
     8[ -d .tmp ] && rm -rf .tmp
     9[ -f nuget.exe ] && rm nuget.exe
    10[ -f dotnet-intall.sh ] && rm dotnet-install.sh

View as plain text