mirror of
https://github.com/Mudlet/Mudlet
synced 2026-08-13 18:26:27 -04:00
We no longer use that platform for a long while now
<!-- Keep the title short & concise so anyone non-technical can
understand it,
the title appears in PTB changelogs -->
#### Brief overview of PR changes/additions
Remove `travis.` prefix from CI files
#### Motivation for adding to Mudlet
We no longer use Travis for years now
#### Other info (issues closed, discussion etc)
Also deleted an unused `Doxyfile`.
Co-authored-by: Vadim Peretokin <vadi2@users.noreply.github.com>
5 lines
116 B
Bash
Executable file
5 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
|
|
echo Before install on OSX.
|
|
./CI/osx.before_install.sh;
|
|
fi
|