mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 02:45:44 -05:00
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
# Calls astyle with settings matching Calamares coding style
|
|
# Requires astyle >= 2.04
|
|
set -e
|
|
|
|
astyle --options=$(dirname $0)/astylerc "$@"
|