mirror of
https://github.com/boostorg/filesystem.git
synced 2026-02-23 15:42:23 +00:00
15 lines
266 B
Bash
Executable File
15 lines
266 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Display version number
|
|
|
|
# Copyright Beman Dawes 2010
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
if [ -f "src/unique_path.cpp" ]; then
|
|
echo Version 3
|
|
else
|
|
echo Version 2
|
|
fi
|